 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     --bg: #060a12;
     --surface: #0c1220;
     --border: rgba(255, 255, 255, 0.06);
     --blue: #2d7ef7;
     --blue-soft: #1a4a8a;
     --blue-glow: rgba(45, 126, 247, 0.15);
     --white: #f0f4ff;
     --muted: #5a6a85;
     --text: #c8d4e8;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     background: var(--bg);
     color: var(--text);
     font-family: 'DM Sans', sans-serif;
     font-weight: 300;
     line-height: 1.7;
     overflow-x: hidden;
 }

 /* NOISE TEXTURE */
 body::before {
     content: '';
     position: fixed;
     inset: 0;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
     pointer-events: none;
     z-index: 0;
     opacity: 0.4;
 }

 /* GLOW ORBS */
 .orb {
     position: fixed;
     border-radius: 50%;
     filter: blur(120px);
     pointer-events: none;
     z-index: 0;
 }

 .orb-1 {
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(45, 126, 247, 0.08) 0%, transparent 70%);
     top: -200px;
     left: -100px;
     animation: drift1 20s ease-in-out infinite alternate;
 }

 .orb-2 {
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(45, 126, 247, 0.05) 0%, transparent 70%);
     bottom: 10%;
     right: -100px;
     animation: drift2 25s ease-in-out infinite alternate;
 }

 @keyframes drift1 {
     from {
         transform: translate(0, 0);
     }

     to {
         transform: translate(60px, 40px);
     }
 }

 @keyframes drift2 {
     from {
         transform: translate(0, 0);
     }

     to {
         transform: translate(-40px, -60px);
     }
 }

 /* NAV */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 100;
     padding: 24px 48px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     border-bottom: 1px solid transparent;
     transition: all 0.4s ease;
     backdrop-filter: blur(0px);
 }

 nav.scrolled {
     background: rgba(6, 10, 18, 0.85);
     border-bottom-color: var(--border);
     backdrop-filter: blur(20px);
     padding: 16px 48px;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
 }

 .logo-icon {
     width: 42px;
     height: 42px;
     position: relative;
 }

 .logo-icon img {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 .logo-text {
     font-family: 'Syne', sans-serif;
     font-weight: 700;
     font-size: 18px;
     color: var(--white);
     letter-spacing: -0.3px;
 }

 .logo-text span {
     color: var(--blue);
 }

 .nav-cta {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 10px 22px;
     border: 1px solid rgba(45, 126, 247, 0.3);
     border-radius: 6px;
     color: var(--blue);
     font-family: 'DM Sans', sans-serif;
     font-size: 14px;
     font-weight: 500;
     text-decoration: none;
     transition: all 0.2s ease;
     background: rgba(45, 126, 247, 0.05);
 }

 .nav-cta:hover {
     background: rgba(45, 126, 247, 0.12);
     border-color: rgba(45, 126, 247, 0.6);
 }

 /* HERO */
 .hero {
     position: relative;
     z-index: 1;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     padding: 120px 24px 80px;
     overflow: hidden
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 6px 16px;
     border: 1px solid rgba(45, 126, 247, 0.2);
     border-radius: 100px;
     font-size: 12px;
     font-weight: 500;
     color: var(--blue);
     letter-spacing: 0.08em;
     text-transform: uppercase;
     background: rgba(45, 126, 247, 0.06);
     margin-bottom: 40px;
     opacity: 0;
     animation: fadeUp 0.8s ease 0.2s forwards;
 }

 .hero-badge::before {
     content: '';
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--blue);
     animation: pulse 2s ease infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
         transform: scale(1);
     }

     50% {
         opacity: 0.5;
         transform: scale(0.8);
     }
 }

 .hero-title {
     font-family: 'Syne', sans-serif;
     font-size: clamp(48px, 7vw, 88px);
     font-weight: 800;
     line-height: 1.0;
     letter-spacing: -0.03em;
     color: var(--white);
     max-width: 900px;
     margin-bottom: 28px;
     opacity: 0;
     animation: fadeUp 0.8s ease 0.4s forwards;
 }

 .hero-title .accent {
     color: transparent;
     -webkit-text-stroke: 1px rgba(45, 126, 247, 0.5);
 }

 .hero-title .blue {
     color: var(--blue);
 }

 .hero-sub {
     font-size: clamp(16px, 2vw, 19px);
     color: var(--muted);
     max-width: 560px;
     margin-bottom: 52px;
     font-weight: 300;
     opacity: 0;
     animation: fadeUp 0.8s ease 0.6s forwards;
 }

 .hero-actions {
     display: flex;
     gap: 16px;
     align-items: center;
     opacity: 0;
     animation: fadeUp 0.8s ease 0.8s forwards;
 }

 .btn-primary {
     padding: 14px 32px;
     background: var(--blue);
     color: #fff;
     border: none;
     border-radius: 6px;
     font-family: 'DM Sans', sans-serif;
     font-size: 15px;
     font-weight: 500;
     cursor: pointer;
     text-decoration: none;
     transition: all 0.2s ease;
     box-shadow: 0 0 30px rgba(45, 126, 247, 0.3);
 }

 .btn-primary:hover {
     background: #4a8ef8;
     box-shadow: 0 0 50px rgba(45, 126, 247, 0.5);
     transform: translateY(-1px);
 }

 .btn-ghost {
     padding: 14px 32px;
     background: transparent;
     color: var(--text);
     border: 1px solid var(--border);
     border-radius: 6px;
     font-family: 'DM Sans', sans-serif;
     font-size: 15px;
     font-weight: 400;
     cursor: pointer;
     text-decoration: none;
     transition: all 0.2s ease;
 }

 .btn-ghost:hover {
     border-color: rgba(255, 255, 255, 0.15);
     color: var(--white);
 }

 /* DIVIDER LINE */
 .divider {
     position: relative;
     z-index: 1;
     width: 100%;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(45, 126, 247, 0.2), transparent);
     margin: 0;
 }

 /* SECTION */
 section {
     position: relative;
     z-index: 1;
     padding: 100px 24px;
     max-width: 1100px;
     margin: 0 auto;
 }

 .section-label {
     font-size: 11px;
     font-weight: 500;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--blue);
     margin-bottom: 20px;
 }

 .section-title {
     font-family: 'Syne', sans-serif;
     font-size: clamp(32px, 4vw, 48px);
     font-weight: 700;
     color: var(--white);
     line-height: 1.1;
     letter-spacing: -0.02em;
     margin-bottom: 20px;
 }

 .section-desc {
     font-size: 17px;
     color: var(--muted);
     max-width: 520px;
     line-height: 1.8;
 }

 /* ABOUT SPLIT */
 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .about-right {
     display: flex;
     flex-direction: column;
     gap: 32px;
 }

 .about-stat {
     padding: 28px;
     border: 1px solid var(--border);
     border-radius: 12px;
     background: var(--surface);
     position: relative;
     overflow: hidden;
     transition: border-color 0.3s ease;
 }

 .about-stat:hover {
     border-color: rgba(45, 126, 247, 0.2);
 }

 .about-stat::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(45, 126, 247, 0.3), transparent);
 }

 .about-stat-label {
     font-size: 12px;
     font-weight: 500;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 8px;
 }

 .about-stat-value {
     font-family: 'Syne', sans-serif;
     font-size: 28px;
     font-weight: 700;
     color: var(--white);
 }

 .about-stat-value span {
     color: var(--blue);
 }

 /* HOW IT WORKS */
 .steps-full {
     max-width: 1100px;
     margin: 0 auto;
     padding: 100px 24px;
     position: relative;
     z-index: 1;
 }

 .steps-header {
     text-align: center;
     margin-bottom: 72px;
 }

 .steps-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2px;
     background: var(--border);
     border-radius: 16px;
     overflow: hidden;
 }

 .step {
     background: var(--bg);
     padding: 48px 36px;
     position: relative;
     transition: background 0.3s ease;
 }

 .step:hover {
     background: var(--surface);
 }

 .step-number {
     font-family: 'Syne', sans-serif;
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.15em;
     color: var(--blue);
     text-transform: uppercase;
     margin-bottom: 24px;
     opacity: 0.7;
 }

 .step-icon {
     width: 44px;
     height: 44px;
     border: 1px solid rgba(45, 126, 247, 0.2);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 24px;
     background: rgba(45, 126, 247, 0.05);
 }

 .step-icon svg {
     width: 20px;
     height: 20px;
     stroke: var(--blue);
     fill: none;
     stroke-width: 1.5;
 }

 .step-title {
     font-family: 'Syne', sans-serif;
     font-size: 20px;
     font-weight: 600;
     color: var(--white);
     margin-bottom: 12px;
 }

 .step-desc {
     font-size: 15px;
     color: var(--muted);
     line-height: 1.8;
 }

 /* DMI SCORE */
 .dmi-section {
     max-width: 1100px;
     margin: 0 auto;
     padding: 100px 24px;
     position: relative;
     z-index: 1;
 }

 .dmi-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 20px;
     padding: 72px 80px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     position: relative;
     overflow: hidden;
 }

 .dmi-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(45, 126, 247, 0.4), transparent);
 }

 .dmi-card::after {
     content: 'DMI';
     position: absolute;
     right: -20px;
     top: 50%;
     transform: translateY(-50%);
     font-family: 'Syne', sans-serif;
     font-size: 160px;
     font-weight: 800;
     color: rgba(45, 126, 247, 0.03);
     pointer-events: none;
     letter-spacing: -8px;
 }

 .dmi-pillars {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .pillar {
     display: flex;
     align-items: center;
     gap: 16px;
     padding: 16px 20px;
     border: 1px solid var(--border);
     border-radius: 10px;
     transition: all 0.2s ease;
 }

 .pillar:hover {
     border-color: rgba(45, 126, 247, 0.2);
     background: rgba(45, 126, 247, 0.04);
 }

 .pillar-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--blue);
     flex-shrink: 0;
 }

 .pillar-name {
     font-size: 14px;
     font-weight: 500;
     color: var(--text);
 }

 .pillar-bar {
     flex: 1;
     height: 2px;
     background: var(--border);
     border-radius: 2px;
     overflow: hidden;
 }

 .pillar-fill {
     height: 100%;
     background: var(--blue);
     border-radius: 2px;
     transition: width 1s ease;
 }

 /* FOR WHO */
 .forwho {
     max-width: 1100px;
     margin: 0 auto;
     padding: 100px 24px;
     position: relative;
     z-index: 1;
 }

 .forwho-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px;
     margin-top: 56px;
 }

 .forwho-card {
     padding: 32px;
     border: 1px solid var(--border);
     border-radius: 12px;
     background: var(--surface);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .forwho-card:hover {
     border-color: rgba(45, 126, 247, 0.2);
     transform: translateY(-2px);
 }

 .forwho-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(45, 126, 247, 0.2), transparent);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .forwho-card:hover::after {
     opacity: 1;
 }

 .forwho-icon {
     font-size: 28px;
     margin-bottom: 16px;
 }

 .forwho-title {
     font-family: 'Syne', sans-serif;
     font-size: 17px;
     font-weight: 600;
     color: var(--white);
     margin-bottom: 8px;
 }

 .forwho-desc {
     font-size: 14px;
     color: var(--muted);
     line-height: 1.7;
 }

 /* CTA SECTION */
 .cta-section {
     max-width: 1100px;
     margin: 0 auto;
     padding: 60px 24px 120px;
     position: relative;
     z-index: 1;
 }

 .cta-card {
     background: linear-gradient(135deg, rgba(45, 126, 247, 0.08) 0%, rgba(6, 10, 18, 0) 60%);
     border: 1px solid rgba(45, 126, 247, 0.15);
     border-radius: 20px;
     padding: 80px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 60%;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(45, 126, 247, 0.4), transparent);
 }

 .cta-title {
     font-family: 'Syne', sans-serif;
     font-size: clamp(28px, 3.5vw, 42px);
     font-weight: 700;
     color: var(--white);
     margin-bottom: 16px;
     letter-spacing: -0.02em;
 }

 .cta-desc {
     font-size: 17px;
     color: var(--muted);
     margin-bottom: 40px;
     max-width: 480px;
     margin-left: auto;
     margin-right: auto;
 }

 /* FOOTER */
 footer {
     position: relative;
     z-index: 1;
     border-top: 1px solid var(--border);
     padding: 40px 48px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .footer-copy {
     font-size: 13px;
     color: var(--muted);
 }

 .footer-tagline {
     font-size: 13px;
     color: var(--muted);
     font-style: italic;
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(24px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* SCROLL REVEAL */
 .reveal {
     opacity: 0;
     transform: translateY(32px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* RESPONSIVE */
 @media (max-width: 768px) {
     nav {
         padding: 20px 24px;
     }

     nav.scrolled {
         padding: 14px 24px;
     }

     .about-grid {
         grid-template-columns: 1fr;
         gap: 48px;
     }

     .steps-grid {
         grid-template-columns: 1fr;
     }

     .dmi-card {
         grid-template-columns: 1fr;
         padding: 40px 32px;
         gap: 40px;
     }

     .forwho-grid {
         grid-template-columns: 1fr;
     }

     .cta-card {
         padding: 48px 32px;
     }

     footer {
         flex-direction: column;
         gap: 12px;
         text-align: center;
         padding: 32px 24px;
     }

     .hero-actions {
         flex-direction: column;
         width: 100%;
     }

     .btn-primary,
     .btn-ghost {
         width: 100%;
         text-align: center;
     }
 }

 .cta-buttons {
     display: flex;
     gap: 16px;
     justify-content: center;
     flex-wrap: wrap;
 }

 @media (max-width: 480px) {
     .cta-buttons {
         flex-direction: column;
         align-items: stretch;
     }

     .cta-buttons .btn-primary {
         text-align: center;
     }
 }

 @media (max-width: 480px) {
     .hero-title {
         font-size: 36px;
         overflow: hidden;
         word-break: break-word;
     }
 }